home *** CD-ROM | disk | FTP | other *** search
- /*
- * soft.h
- * Soft instructions available.
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #ifndef __soft_h
- #define __soft_h
-
- void soft_unimplemented();
-
- void soft_frem();
- void soft_drem();
- void soft_fcmpl();
- void soft_fcmpg();
- void soft_dcmpl();
- void soft_dcmpg();
- void soft_multianewarray();
- void soft_new();
- void soft_newarray();
- void soft_anewarray();
- void soft_athrow();
- void soft_checkcast();
- void soft_instanceof();
- void soft_lookupmethod();
- void soft_monitorenter();
- void soft_monitorexit();
- void soft_lmul();
- void soft_ldiv();
- void soft_lrem();
- void soft_lshl();
- void soft_lshr();
- void soft_lushr();
- void soft_lcmp();
-
- #endif
-